home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / comnumb.exe / CTST.MAK < prev    next >
Text File  |  1992-05-01  |  814b  |  59 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +CTST.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = D:\BCWIN\LIB
  9. INCLUDEPATH = D:\BCWIN\INCLUDE
  10.  
  11.  
  12. #        *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #        *List Macros*
  20.  
  21.  
  22. EXE_dependencies =  \
  23.  ctst.obj \
  24.  compoun.obj \
  25.  rational.obj
  26.  
  27. #        *Explicit Rules*
  28. ctst.exe: ctst.cfg $(EXE_dependencies)
  29.   $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
  30. c0s.obj+
  31. ctst.obj+
  32. compoun.obj+
  33. rational.obj
  34. ctst
  35.         # no map file
  36. emu.lib+
  37. maths.lib+
  38. cs.lib
  39. |
  40.  
  41.  
  42. #        *Individual File Dependencies*
  43. ctst.obj: ctst.cfg ctst.cpp 
  44.  
  45. compoun.obj: ctst.cfg compoun.cpp 
  46.  
  47. rational.obj: ctst.cfg rational.cpp 
  48.  
  49. #        *Compiler Configuration File*
  50. ctst.cfg: ctst.mak
  51.   copy &&|
  52. -v
  53. -w+
  54. -I$(INCLUDEPATH)
  55. -L$(LIBPATH)
  56. | ctst.cfg
  57.  
  58.  
  59.